home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / include / sun3.md / sigMach.h < prev    next >
Encoding:
C/C++ Source or Header  |  1989-06-16  |  1.3 KB  |  48 lines

  1. /*
  2.  * sigMach.h --
  3.  *
  4.  *     Machine dependent data structures and procedure headers exported by the
  5.  *     the signal module.  These are are for the 68010 hardware.
  6.  *
  7.  * Copyright (C) 1985, 1988 Regents of the University of California
  8.  * Permission to use, copy, modify, and distribute this
  9.  * software and its documentation for any purpose and without
  10.  * fee is hereby granted, provided that the above copyright
  11.  * notice appear in all copies.  The University of California
  12.  * makes no representations about the suitability of this
  13.  * software for any purpose.  It is provided "as is" without
  14.  * express or implied warranty.
  15.  *
  16.  * $Header: /sprite/src/lib/include/sun3.md/RCS/sigMach.h,v 1.2 89/06/16 13:17:27 rab Exp $ SPRITE (Berkeley)
  17.  */
  18.  
  19. #ifndef _SIGMACH
  20. #define _SIGMACH
  21.  
  22. /*
  23.  * The different machine dependent codes for an illegal instruction signal
  24.  */
  25.  
  26. #define    SIG_TRAPV        4
  27. #define    SIG_CHK            5
  28. #define    SIG_EMU1010        6
  29. #define    SIG_EMU1111        7
  30.  
  31.  
  32. #ifdef sun3
  33.  
  34. /*
  35.  * Machine dependent codes for mc68881 floating point exception signals
  36.  */
  37.  
  38. #define SIG_FP_UNORDERED_COND  48
  39. #define SIG_FP_INEXACT_RESULT  49
  40. #define SIG_FP_ZERO_DIV        50
  41. #define SIG_FP_UNDERFLOW       51
  42. #define SIG_FP_OPERAND_ERROR   52
  43. #define SIG_FP_OVERFLOW        53
  44. #define SIG_FP_NAN             54
  45. #endif
  46.  
  47. #endif /* _SIGMACH */
  48.